In [66]:
from __future__ import print_function

from keras.models import Sequential, Model
from keras.layers.embeddings import Embedding
from keras.layers import Input, Activation, Dense, Permute, Dropout, add, dot,merge, concatenate
from keras.layers import LSTM
from keras.utils.data_utils import get_file
from keras.preprocessing.sequence import pad_sequences
from functools import reduce
import tarfile
import numpy as np
import re
In [67]:
def tokenize(sent):
    # splitting the sentences based on spaces and tokenizing them
    return [x.strip() for x in re.split('(\W+)?', sent) if x.strip()]
In [68]:
def parse_stories(lines, only_supporting=False):
   
    # Trying to retrive the questions and 
    # ansers to the particular questions
    
    data = []
    story = []
    for line in lines:
        line = line.decode('utf-8').strip()
        nid, line = line.split(' ', 1)
        nid = int(nid)
        if nid == 1:
            story = []
        if '\t' in line:
            q, a, supporting = line.split('\t')
            q = tokenize(q)
            substory = None
            if only_supporting:
                # Only select the related substory
                supporting = map(int, supporting.split())
                substory = [story[i - 1] for i in supporting]
            else:
                # Provide all the substories
                substory = [x for x in story if x]
            data.append((substory, q, a))
            story.append('')
        else:
            sent = tokenize(line)
            story.append(sent)
        
    return data
In [69]:
def get_stories(f, only_supporting=False, max_length=None):
    
    # Discaring the stories longer than the max length defined 
    # and converting the lines in to a single story corresponding 
    # to the questions
    data = parse_stories(f.readlines(), only_supporting=only_supporting)
    flatten = lambda data: reduce(lambda x, y: x + y, data)
    data = [(flatten(story), q, answer) for story, q, answer in data if not max_length or len(flatten(story)) < max_length]
    return data
In [70]:
def vectorize_stories(data, word_idx, story_maxlen, query_maxlen):

    # Mapping the length of stories against story with maximum
    # length and doing necessary padding
    
    X = []
    Xq = []
    Y = []
    for story, query, answer in data:
        x=[word_idx[w] for w in story]
        xq=[word_idx[w] for w in query]
        y=np.zeros(len(word_idx) + 1)
        y[word_idx[answer]]=1
        X.append(x)
        Xq.append(xq)
        Y.append(y)
    return (pad_sequences(X, maxlen=story_maxlen),
            pad_sequences(Xq, maxlen=query_maxlen),
            np.array(Y))
In [71]:
''' Accessing the particula modules of the 
Babi dataset saperated by the modules
'''

try:
    path = get_file('babi-tasks-v1-2.tar.gz', origin='https://s3.amazonaws.com/text-datasets/babi_tasks_1-20_v1-2.tar.gz')
except:
    print('Error downloading dataset, please download it manually:\n'
          '$ wget http://www.thespermwhale.com/jaseweston/babi/tasks_1-20_v1-2.tar.gz\n'
          '$ mv tasks_1-20_v1-2.tar.gz ~/.keras/datasets/babi-tasks-v1-2.tar.gz')
    raise
tar = tarfile.open(path)
In [72]:
challenges = {'qa5_three-arg-relations': 'tasks_1-20_v1-2/en-10k/qa5_three-arg-relations_{}.txt'}
challenge_type = 'qa5_three-arg-relations'
challenge = challenges[challenge_type]

print('Extracting stories for the challenge:', challenge_type)
train_stories = get_stories(tar.extractfile(challenge.format('train')))
test_stories = get_stories(tar.extractfile(challenge.format('test')))
Extracting stories for the challenge: qa5_three-arg-relations
/usr/lib/python3.5/re.py:203: FutureWarning: split() requires a non-empty pattern match.
  return _compile(pattern, flags).split(string, maxsplit)
In [73]:
print(train_stories)
[(['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff')]
In [74]:
print(test_stories)
[(['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Jeff'), (['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Bill', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Jeff'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'football', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'football'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Mary'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Fred'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Jeff'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Bill', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'apple'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Jeff'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'milk'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Mary', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Bill', '?'], 'Fred'), (['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'football', '?'], 'Fred'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Mary'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'football'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Fred', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Bill'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'football', 'to', '?'], 'Mary'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'football', 'to', '?'], 'Fred'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Bill'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Fred', '?'], 'Bill'), (['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'milk'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Mary'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Jeff'), (['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'football'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Bill'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'milk'), (['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Mary'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Jeff'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Bill', '?'], 'apple'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Jeff', '?'], 'football'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Jeff', '?'], 'Bill'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'apple'), (['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'apple', 'to', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'did', 'Jeff', 'give', 'the', 'milk', 'to', '?'], 'Fred'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Fred', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'milk'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'milk', 'to', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Mary'), (['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'did', 'Fred', 'give', 'the', 'apple', 'to', '?'], 'Jeff'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Jeff', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'apple', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'apple', 'to', 'Fred', '?'], 'Mary'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Fred'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Bill'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Mary'), (['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Bill', '?'], 'football'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'did', 'Mary', 'give', 'the', 'milk', 'to', '?'], 'Jeff'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'milk'), (['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.'], ['Who', 'received', 'the', 'football', '?'], 'Mary'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['What', 'did', 'Fred', 'give', 'to', 'Mary', '?'], 'milk'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Mary', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Fred'), (['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Jeff'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.'], ['Who', 'gave', 'the', 'milk', 'to', 'Jeff', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.'], ['Who', 'gave', 'the', 'milk', '?'], 'Fred'), (['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.'], ['Who', 'received', 'the', 'milk', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'apple'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.'], ['Who', 'did', 'Bill', 'give', 'the', 'apple', 'to', '?'], 'Fred'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'apple', '?'], 'Bill'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.'], ['What', 'did', 'Jeff', 'give', 'to', 'Mary', '?'], 'football'), (['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.'], ['Who', 'gave', 'the', 'football', 'to', 'Mary', '?'], 'Jeff'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.'], ['Who', 'received', 'the', 'football', '?'], 'Bill'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.'], ['Who', 'gave', 'the', 'football', '?'], 'Fred'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Bill', '?'], 'football'), (['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.'], ['What', 'did', 'Mary', 'give', 'to', 'Jeff', '?'], 'apple')]
In [75]:
vocab = set()
for story, q, answer in train_stories + test_stories:
    print(story)
    vocab |= set(story + q + [answer])
vocab = sorted(vocab)

# Reserve 0 for masking via pad_sequences
vocab_size = len(vocab) + 1
story_maxlen = max(map(len, (x for x, _, _ in train_stories + test_stories)))
query_maxlen = max(map(len, (x for _, x, _ in train_stories + test_stories)))
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'apple', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'left', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.']
['Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'milk', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'left', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'left', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'apple', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.']
['Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'left', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'left', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.']
['Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'football', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.']
['Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.']
['Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'apple', 'there', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Mary', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'discarded', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'apple', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'football', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'discarded', 'the', 'milk', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.']
['Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'football', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.']
['Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'took', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'discarded', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'left', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'dropped', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'football', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'football', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'discarded', 'the', 'milk', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.']
['Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'discarded', 'the', 'apple', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'apple', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.']
['Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'dropped', 'the', 'apple', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.']
['Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'milk', 'there', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'left', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'left', 'the', 'football', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'left', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Jeff', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'discarded', 'the', 'football', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'put', 'down', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'left', 'the', 'apple', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'apple', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.']
['Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'milk', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Bill', 'got', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'discarded', 'the', 'apple', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'football', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'left', 'the', 'football', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'got', 'the', 'milk', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.', 'Jeff', 'put', 'down', 'the', 'milk', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'discarded', 'the', 'football', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'kitchen', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'discarded', 'the', 'football', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.']
['Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'put', 'down', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.']
['Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'dropped', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'left', 'the', 'milk', '.', 'Fred', 'discarded', 'the', 'football', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Bill', 'discarded', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'got', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'dropped', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.']
['Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'apple', 'there', '.', 'Bill', 'got', 'the', 'apple', 'there', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'dropped', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'put', 'down', 'the', 'milk', '.', 'Mary', 'grabbed', 'the', 'apple', 'there', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Mary', 'left', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'put', 'down', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.']
['Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Jeff', 'put', 'down', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'put', 'down', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'milk', 'there', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Jeff', 'left', 'the', 'football', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.']
['Mary', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'took', 'the', 'apple', 'there', '.', 'Fred', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Bill', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'milk', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Bill', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Bill', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Bill', 'left', 'the', 'football', '.', 'Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Mary', 'discarded', 'the', 'apple', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'discarded', 'the', 'milk', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'grabbed', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'put', 'down', 'the', 'apple', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Jeff', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.']
['Mary', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'apple', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Jeff', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'milk', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'got', 'the', 'milk', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Fred', 'journeyed', 'to', 'the', 'bathroom', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'left', 'the', 'apple', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Fred', 'dropped', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'took', 'the', 'football', 'there', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'dropped', 'the', 'apple', 'there', '.', 'Fred', 'took', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.']
['Bill', 'went', 'to', 'the', 'garden', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'dropped', 'the', 'apple', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Bill', 'took', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Bill', '.', 'Mary', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'left', 'the', 'apple', 'there', '.', 'Fred', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.']
['Fred', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'bedroom', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Jeff', 'left', 'the', 'football', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.']
['Bill', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'grabbed', 'the', 'apple', 'there', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'got', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Bill', 'left', 'the', 'milk', '.', 'Jeff', 'gave', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'journeyed', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'left', 'the', 'football', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.']
['Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', '.', 'Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'football', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bathroom', '.', 'Fred', 'travelled', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'put', 'down', 'the', 'milk', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Fred', 'journeyed', 'to', 'the', 'hallway', '.', 'Jeff', 'took', 'the', 'milk', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'moved', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'got', 'the', 'apple', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Bill', 'travelled', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Fred', 'got', 'the', 'milk', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'journeyed', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'apple', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.']
['Mary', 'journeyed', 'to', 'the', 'bedroom', '.', 'Jeff', 'travelled', 'to', 'the', 'hallway', '.', 'Fred', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'moved', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Mary', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'got', 'the', 'apple', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'kitchen', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'garden', '.', 'Mary', 'travelled', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Fred', 'left', 'the', 'apple', '.', 'Mary', 'took', 'the', 'apple', 'there', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'gave', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.']
['Bill', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'went', 'to', 'the', 'office', '.', 'Mary', 'went', 'to', 'the', 'kitchen', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Fred', 'gave', 'the', 'football', 'to', 'Bill', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.']
['Bill', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'moved', 'to', 'the', 'hallway', '.', 'Bill', 'journeyed', 'to', 'the', 'bathroom', '.', 'Jeff', 'took', 'the', 'football', 'there', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Bill', '.', 'Jeff', 'picked', 'up', 'the', 'milk', 'there', '.', 'Fred', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Jeff', '.', 'Mary', 'went', 'to', 'the', 'bathroom', '.', 'Bill', 'handed', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'left', 'the', 'football', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.']
['Bill', 'went', 'to', 'the', 'bedroom', '.', 'Jeff', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'took', 'the', 'milk', 'there', '.', 'Mary', 'moved', 'to', 'the', 'garden', '.', 'Mary', 'dropped', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Mary', 'left', 'the', 'milk', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.', 'Jeff', 'went', 'to', 'the', 'office', '.', 'Mary', 'left', 'the', 'milk', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Jeff', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'passed', 'the', 'milk', 'to', 'Mary', '.', 'Mary', 'handed', 'the', 'milk', 'to', 'Fred', '.', 'Bill', 'moved', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'milk', 'to', 'Mary', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.']
['Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'took', 'the', 'milk', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'garden', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Jeff', 'gave', 'the', 'milk', 'to', 'Fred', '.', 'Fred', 'gave', 'the', 'milk', 'to', 'Jeff', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'to', 'the', 'bathroom', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Mary', 'moved', 'to', 'the', 'kitchen', '.', 'Jeff', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Jeff', 'left', 'the', 'milk', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Jeff', 'left', 'the', 'apple', 'there', '.', 'Fred', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'put', 'down', 'the', 'football', '.', 'Jeff', 'journeyed', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Fred', 'left', 'the', 'football', '.', 'Fred', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Jeff', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Jeff', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'left', 'the', 'football', '.', 'Mary', 'got', 'the', 'milk', 'there', '.', 'Bill', 'picked', 'up', 'the', 'apple', 'there', '.', 'Bill', 'put', 'down', 'the', 'apple', 'there', '.', 'Mary', 'passed', 'the', 'milk', 'to', 'Bill', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.']
['Mary', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'took', 'the', 'apple', 'there', '.', 'Jeff', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'back', 'to', 'the', 'garden', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'handed', 'the', 'apple', 'to', 'Bill', '.', 'Bill', 'passed', 'the', 'apple', 'to', 'Fred', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Fred', 'left', 'the', 'milk', 'there', '.', 'Fred', 'left', 'the', 'apple', '.', 'Fred', 'journeyed', 'to', 'the', 'kitchen', '.', 'Jeff', 'got', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bathroom', '.', 'Jeff', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'travelled', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'garden', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Jeff', 'moved', 'to', 'the', 'kitchen', '.', 'Fred', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'moved', 'to', 'the', 'hallway', '.', 'Mary', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Jeff', 'gave', 'the', 'football', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'football', 'to', 'Jeff', '.', 'Jeff', 'passed', 'the', 'football', 'to', 'Mary', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.']
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
In [76]:
with open('story_maxlen_three-arg-relations.txt','w') as file:
    file.write(str(story_maxlen))
    file.write('\n')
file.close()


with open('query_maxlen_three-arg-relations.txt','w') as file:
    file.write(str(query_maxlen))
    file.write('\n')
file.close()
In [77]:
''' Knowing some facts and stats about the 
module of dataset we are using
'''

print('-')
print('Vocab size:', vocab_size, 'unique words')
print('Story max length:', story_maxlen, 'words')
print('Query max length:', query_maxlen, 'words')
print('Number of training stories:', len(train_stories))
print('Number of test stories:', len(test_stories))
print('-')
print('Here\'s what a "story" tuple looks like (input, query, answer):')
print(train_stories[0])
print('-')
print('Vectorizing the word sequences...')

word_idx = dict((c, i + 1) for i, c in enumerate(vocab))
idx_word = dict((i+1, c) for i,c in enumerate(vocab))
inputs_train, queries_train, answers_train = vectorize_stories(train_stories,
                                                               word_idx,
                                                               story_maxlen,
                                                               query_maxlen)
inputs_test, queries_test, answers_test = vectorize_stories(test_stories,
                                                            word_idx,
                                                            story_maxlen,
                                                            query_maxlen)
-
Vocab size: 42 unique words
Story max length: 782 words
Query max length: 8 words
Number of training stories: 10000
Number of test stories: 1000
-
Here's what a "story" tuple looks like (input, query, answer):
(['Bill', 'travelled', 'to', 'the', 'office', '.', 'Bill', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'went', 'to', 'the', 'bedroom', '.', 'Bill', 'gave', 'the', 'football', 'to', 'Fred', '.'], ['What', 'did', 'Bill', 'give', 'to', 'Fred', '?'], 'football')
-
Vectorizing the word sequences...
In [78]:
with open('word_idx_three-arg-relations.txt','w') as file:
    file.write(str(word_idx))
file.close()
In [79]:
with open('idx_word_three-arg-relations.txt','w') as file:
    file.write(str(idx_word))
file.close()
In [80]:
print(word_idx)
{'bedroom': 12, 'back': 10, 'the': 35, 'handed': 24, 'football': 17, 'passed': 31, 'journeyed': 25, 'hallway': 23, 'Bill': 3, 'What': 7, 'did': 13, 'picked': 32, 'Jeff': 5, 'dropped': 16, 'left': 27, 'up': 40, 'received': 34, 'bathroom': 11, 'apple': 9, 'down': 15, 'to': 37, 'office': 30, '.': 1, 'garden': 18, 'grabbed': 22, 'went': 41, 'Fred': 4, 'there': 36, 'travelled': 39, 'Who': 8, 'took': 38, 'kitchen': 26, 'discarded': 14, 'give': 20, 'got': 21, 'gave': 19, 'milk': 28, '?': 2, 'put': 33, 'Mary': 6, 'moved': 29}
In [81]:
print(idx_word)
{1: '.', 2: '?', 3: 'Bill', 4: 'Fred', 5: 'Jeff', 6: 'Mary', 7: 'What', 8: 'Who', 9: 'apple', 10: 'back', 11: 'bathroom', 12: 'bedroom', 13: 'did', 14: 'discarded', 15: 'down', 16: 'dropped', 17: 'football', 18: 'garden', 19: 'gave', 20: 'give', 21: 'got', 22: 'grabbed', 23: 'hallway', 24: 'handed', 25: 'journeyed', 26: 'kitchen', 27: 'left', 28: 'milk', 29: 'moved', 30: 'office', 31: 'passed', 32: 'picked', 33: 'put', 34: 'received', 35: 'the', 36: 'there', 37: 'to', 38: 'took', 39: 'travelled', 40: 'up', 41: 'went'}
In [82]:
print('-')
print('inputs: integer tensor of shape (samples, max_length)')
print('inputs_train shape:', inputs_train.shape)
print('inputs_test shape:', inputs_test.shape)
print('-')
print('queries: integer tensor of shape (samples, max_length)')
print('queries_train shape:', queries_train.shape)
print('queries_test shape:', queries_test.shape)
print('-')
print('answers: binary (1 or 0) tensor of shape (samples, vocab_size)')
print('answers_train shape:', answers_train.shape)
print('answers_test shape:', answers_test.shape)
print('-')
print('Compiling...')
-
inputs: integer tensor of shape (samples, max_length)
inputs_train shape: (10000, 782)
inputs_test shape: (1000, 782)
-
queries: integer tensor of shape (samples, max_length)
queries_train shape: (10000, 8)
queries_test shape: (1000, 8)
-
answers: binary (1 or 0) tensor of shape (samples, vocab_size)
answers_train shape: (10000, 42)
answers_test shape: (1000, 42)
-
Compiling...
In [83]:
train_epochs = 120
batch_size = 32
lstm_size = 64
In [84]:
# initiating 
input_sequence = Input((story_maxlen,))
question = Input((query_maxlen,))

print('Input sequence:', input_sequence)
print('Question:', question)

# defining the encoder for the input and embedding the vocab
input_encoder_m = Sequential()
input_encoder_m.add(Embedding(input_dim=vocab_size,
                              output_dim=64))
input_encoder_m.add(Dropout(0.3))

# mapping the dimensions according to the maximum length on input
input_encoder_c = Sequential()
input_encoder_c.add(Embedding(input_dim=vocab_size,
                              output_dim=query_maxlen))
input_encoder_c.add(Dropout(0.3))

# vectorizing the questions
question_encoder = Sequential()
question_encoder.add(Embedding(input_dim=vocab_size,
                               output_dim=64,
                               input_length=query_maxlen))
question_encoder.add(Dropout(0.3))


# conctinating input stories and questions
input_encoded_m = input_encoder_m(input_sequence)
print('Input encoded m', input_encoded_m)
input_encoded_c = input_encoder_c(input_sequence)
print('Input encoded c', input_encoded_c)
question_encoded = question_encoder(question)
print('Question encoded', question_encoded)


# cross refrencing the questions against the stories
match = merge([input_encoded_m, question_encoded], mode='dot', dot_axes=(2, 2))
print(match.shape)
match = Activation('softmax')(match)
print('Match shape', match)

response = merge([match, input_encoded_c], mode='sum')
response = Permute((2, 1))(response)  
print('Response shape', response)

# mapping answers against the vector of question and stories
answer = merge([response, question_encoded], mode='concat')
print('Answer shape', answer)

answer = LSTM(64)(answer)  
answer = Dropout(0.3)(answer)
answer = Dense(vocab_size)(answer)  

# popping out prob. of answers
answer = Activation('softmax')(answer)
Input sequence: Tensor("input_5:0", shape=(?, 782), dtype=float32)
Question: Tensor("input_6:0", shape=(?, 8), dtype=float32)
Input encoded m Tensor("sequential_13/dropout_9/cond/Merge:0", shape=(?, 782, 64), dtype=float32)
Input encoded c Tensor("sequential_14/dropout_10/cond/Merge:0", shape=(?, 782, 8), dtype=float32)
Question encoded Tensor("sequential_15/dropout_11/cond/Merge:0", shape=(?, 8, 64), dtype=float32)
(?, 782, 8)
Match shape Tensor("activation_5/truediv:0", shape=(?, 782, 8), dtype=float32)
Response shape Tensor("permute_3/transpose:0", shape=(?, 8, 782), dtype=float32)
Answer shape Tensor("merge_9/concat:0", shape=(?, 8, 846), dtype=float32)
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:38: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
/home/ubuntu/src/keras/keras/legacy/layers.py:464: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
  name=name)
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:43: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
/usr/local/lib/python3.5/dist-packages/ipykernel_launcher.py:48: UserWarning: The `merge` function is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
In [85]:
model = Model([input_sequence, question], answer)
model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
              metrics=['accuracy'])
In [86]:
model.fit([inputs_train, queries_train], answers_train, batch_size, train_epochs,
          validation_data=([inputs_test, queries_test], answers_test))
Train on 10000 samples, validate on 1000 samples
Epoch 1/120
10000/10000 [==============================] - 7s 663us/step - loss: 1.5642 - acc: 0.2738 - val_loss: 1.3156 - val_acc: 0.3260
Epoch 2/120
10000/10000 [==============================] - 6s 592us/step - loss: 1.2916 - acc: 0.3366 - val_loss: 1.1922 - val_acc: 0.4170
Epoch 3/120
10000/10000 [==============================] - 6s 592us/step - loss: 1.0921 - acc: 0.4693 - val_loss: 0.9787 - val_acc: 0.5740
Epoch 4/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.9754 - acc: 0.5606 - val_loss: 0.9272 - val_acc: 0.6070
Epoch 5/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.8892 - acc: 0.6116 - val_loss: 0.7911 - val_acc: 0.6790
Epoch 6/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.7925 - acc: 0.6566 - val_loss: 0.7676 - val_acc: 0.6510
Epoch 7/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.7417 - acc: 0.6850 - val_loss: 0.6870 - val_acc: 0.7180
Epoch 8/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.6948 - acc: 0.7081 - val_loss: 0.6554 - val_acc: 0.7260
Epoch 9/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.6532 - acc: 0.7226 - val_loss: 0.6439 - val_acc: 0.7180
Epoch 10/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.6247 - acc: 0.7372 - val_loss: 0.6247 - val_acc: 0.7120
Epoch 11/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.5881 - acc: 0.7511 - val_loss: 0.6096 - val_acc: 0.7340
Epoch 12/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.5556 - acc: 0.7663 - val_loss: 0.6172 - val_acc: 0.7410
Epoch 13/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.5214 - acc: 0.7869 - val_loss: 0.5494 - val_acc: 0.7590
Epoch 14/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.4665 - acc: 0.8076 - val_loss: 0.5411 - val_acc: 0.7710
Epoch 15/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.4244 - acc: 0.8287 - val_loss: 0.5197 - val_acc: 0.7830
Epoch 16/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.3869 - acc: 0.8452 - val_loss: 0.4639 - val_acc: 0.8140
Epoch 17/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.3554 - acc: 0.8620 - val_loss: 0.4269 - val_acc: 0.8340
Epoch 18/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.3313 - acc: 0.8725 - val_loss: 0.4659 - val_acc: 0.8210
Epoch 19/120
10000/10000 [==============================] - 6s 614us/step - loss: 0.2996 - acc: 0.8913 - val_loss: 0.3829 - val_acc: 0.8620
Epoch 20/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.2775 - acc: 0.8972 - val_loss: 0.3977 - val_acc: 0.8610
Epoch 21/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.2610 - acc: 0.9085 - val_loss: 0.4284 - val_acc: 0.8650
Epoch 22/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.2525 - acc: 0.9057 - val_loss: 0.3780 - val_acc: 0.8640
Epoch 23/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.2370 - acc: 0.9136 - val_loss: 0.3945 - val_acc: 0.8670
Epoch 24/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.2157 - acc: 0.9213 - val_loss: 0.3659 - val_acc: 0.8790
Epoch 25/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.2060 - acc: 0.9267 - val_loss: 0.3820 - val_acc: 0.8830
Epoch 26/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.1953 - acc: 0.9309 - val_loss: 0.3773 - val_acc: 0.8840
Epoch 27/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1892 - acc: 0.9346 - val_loss: 0.3887 - val_acc: 0.8780
Epoch 28/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.1749 - acc: 0.9398 - val_loss: 0.3864 - val_acc: 0.8920
Epoch 29/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1754 - acc: 0.9387 - val_loss: 0.3936 - val_acc: 0.8820
Epoch 30/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1725 - acc: 0.9371 - val_loss: 0.4301 - val_acc: 0.8690
Epoch 31/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.1524 - acc: 0.9460 - val_loss: 0.4228 - val_acc: 0.8760
Epoch 32/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.1577 - acc: 0.9435 - val_loss: 0.4379 - val_acc: 0.8650
Epoch 33/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1522 - acc: 0.9441 - val_loss: 0.4095 - val_acc: 0.8680
Epoch 34/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.1416 - acc: 0.9497 - val_loss: 0.4369 - val_acc: 0.8700
Epoch 35/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1455 - acc: 0.9478 - val_loss: 0.4466 - val_acc: 0.8620
Epoch 36/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1262 - acc: 0.9578 - val_loss: 0.4774 - val_acc: 0.8660
Epoch 37/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.1275 - acc: 0.9557 - val_loss: 0.5436 - val_acc: 0.8550
Epoch 38/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1288 - acc: 0.9548 - val_loss: 0.4974 - val_acc: 0.8560
Epoch 39/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1204 - acc: 0.9586 - val_loss: 0.4863 - val_acc: 0.8620
Epoch 40/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.1220 - acc: 0.9571 - val_loss: 0.4897 - val_acc: 0.8690
Epoch 41/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.1153 - acc: 0.9592 - val_loss: 0.4896 - val_acc: 0.8720
Epoch 42/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.1040 - acc: 0.9627 - val_loss: 0.5314 - val_acc: 0.8620
Epoch 43/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.1097 - acc: 0.9614 - val_loss: 0.5623 - val_acc: 0.8590
Epoch 44/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.1035 - acc: 0.9621 - val_loss: 0.5310 - val_acc: 0.8630
Epoch 45/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.1010 - acc: 0.9636 - val_loss: 0.5236 - val_acc: 0.8670
Epoch 46/120
10000/10000 [==============================] - 6s 616us/step - loss: 0.1045 - acc: 0.9641 - val_loss: 0.5287 - val_acc: 0.8690
Epoch 47/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.1006 - acc: 0.9650 - val_loss: 0.5139 - val_acc: 0.8710
Epoch 48/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0911 - acc: 0.9690 - val_loss: 0.5451 - val_acc: 0.8680
Epoch 49/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0936 - acc: 0.9683 - val_loss: 0.5362 - val_acc: 0.8690
Epoch 50/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0925 - acc: 0.9696 - val_loss: 0.5267 - val_acc: 0.8730
Epoch 51/120
10000/10000 [==============================] - 6s 602us/step - loss: 0.0877 - acc: 0.9702 - val_loss: 0.5901 - val_acc: 0.8670
Epoch 52/120
10000/10000 [==============================] - 6s 600us/step - loss: 0.0839 - acc: 0.9716 - val_loss: 0.5629 - val_acc: 0.8660
Epoch 53/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0896 - acc: 0.9701 - val_loss: 0.6155 - val_acc: 0.8580
Epoch 54/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0845 - acc: 0.9709 - val_loss: 0.5708 - val_acc: 0.8650
Epoch 55/120
10000/10000 [==============================] - 6s 596us/step - loss: 0.0863 - acc: 0.9701 - val_loss: 0.5802 - val_acc: 0.8660
Epoch 56/120
10000/10000 [==============================] - 6s 602us/step - loss: 0.0873 - acc: 0.9711 - val_loss: 0.5710 - val_acc: 0.8610
Epoch 57/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0842 - acc: 0.9705 - val_loss: 0.5849 - val_acc: 0.8720
Epoch 58/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0730 - acc: 0.9751 - val_loss: 0.5579 - val_acc: 0.8670
Epoch 59/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0747 - acc: 0.9730 - val_loss: 0.5679 - val_acc: 0.8690
Epoch 60/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0754 - acc: 0.9735 - val_loss: 0.5692 - val_acc: 0.8750
Epoch 61/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0763 - acc: 0.9748 - val_loss: 0.6007 - val_acc: 0.8690
Epoch 62/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0693 - acc: 0.9766 - val_loss: 0.6210 - val_acc: 0.8610
Epoch 63/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0721 - acc: 0.9762 - val_loss: 0.5747 - val_acc: 0.8690
Epoch 64/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0691 - acc: 0.9774 - val_loss: 0.6185 - val_acc: 0.8620
Epoch 65/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0701 - acc: 0.9747 - val_loss: 0.5966 - val_acc: 0.8660
Epoch 66/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0735 - acc: 0.9744 - val_loss: 0.6141 - val_acc: 0.8640
Epoch 67/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0652 - acc: 0.9788 - val_loss: 0.6632 - val_acc: 0.8560
Epoch 68/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0685 - acc: 0.9782 - val_loss: 0.6253 - val_acc: 0.8650
Epoch 69/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0608 - acc: 0.9794 - val_loss: 0.6708 - val_acc: 0.8610
Epoch 70/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0616 - acc: 0.9797 - val_loss: 0.7049 - val_acc: 0.8550
Epoch 71/120
10000/10000 [==============================] - 6s 597us/step - loss: 0.0592 - acc: 0.9801 - val_loss: 0.6964 - val_acc: 0.8600
Epoch 72/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.0571 - acc: 0.9804 - val_loss: 0.6932 - val_acc: 0.8610
Epoch 73/120
10000/10000 [==============================] - 6s 612us/step - loss: 0.0619 - acc: 0.9802 - val_loss: 0.7301 - val_acc: 0.8630
Epoch 74/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0625 - acc: 0.9785 - val_loss: 0.6686 - val_acc: 0.8550
Epoch 75/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0575 - acc: 0.9804 - val_loss: 0.6626 - val_acc: 0.8680
Epoch 76/120
10000/10000 [==============================] - 6s 596us/step - loss: 0.0552 - acc: 0.9816 - val_loss: 0.6954 - val_acc: 0.8530
Epoch 77/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0600 - acc: 0.9803 - val_loss: 0.6912 - val_acc: 0.8610
Epoch 78/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.0512 - acc: 0.9828 - val_loss: 0.6764 - val_acc: 0.8630
Epoch 79/120
10000/10000 [==============================] - 6s 597us/step - loss: 0.0592 - acc: 0.9805 - val_loss: 0.6596 - val_acc: 0.8680
Epoch 80/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0550 - acc: 0.9820 - val_loss: 0.6772 - val_acc: 0.8610
Epoch 81/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.0544 - acc: 0.9813 - val_loss: 0.7164 - val_acc: 0.8650
Epoch 82/120
10000/10000 [==============================] - 6s 596us/step - loss: 0.0612 - acc: 0.9795 - val_loss: 0.6408 - val_acc: 0.8640
Epoch 83/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0556 - acc: 0.9823 - val_loss: 0.6473 - val_acc: 0.8560
Epoch 84/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0508 - acc: 0.9814 - val_loss: 0.6728 - val_acc: 0.8550
Epoch 85/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0565 - acc: 0.9814 - val_loss: 0.6677 - val_acc: 0.8630
Epoch 86/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0528 - acc: 0.9830 - val_loss: 0.7107 - val_acc: 0.8630
Epoch 87/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0542 - acc: 0.9820 - val_loss: 0.6882 - val_acc: 0.8690
Epoch 88/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0503 - acc: 0.9836 - val_loss: 0.6835 - val_acc: 0.8590
Epoch 89/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0549 - acc: 0.9819 - val_loss: 0.6938 - val_acc: 0.8630
Epoch 90/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0467 - acc: 0.9840 - val_loss: 0.6978 - val_acc: 0.8640
Epoch 91/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0520 - acc: 0.9833 - val_loss: 0.7122 - val_acc: 0.8600
Epoch 92/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0533 - acc: 0.9823 - val_loss: 0.7605 - val_acc: 0.8680
Epoch 93/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0529 - acc: 0.9830 - val_loss: 0.7500 - val_acc: 0.8540
Epoch 94/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.0549 - acc: 0.9840 - val_loss: 0.6827 - val_acc: 0.8620
Epoch 95/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.0535 - acc: 0.9820 - val_loss: 0.7366 - val_acc: 0.8580
Epoch 96/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0556 - acc: 0.9822 - val_loss: 0.6829 - val_acc: 0.8610
Epoch 97/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0484 - acc: 0.9846 - val_loss: 0.6828 - val_acc: 0.8630
Epoch 98/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0507 - acc: 0.9843 - val_loss: 0.6915 - val_acc: 0.8590
Epoch 99/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0516 - acc: 0.9826 - val_loss: 0.6923 - val_acc: 0.8590
Epoch 100/120
10000/10000 [==============================] - 6s 614us/step - loss: 0.0471 - acc: 0.9827 - val_loss: 0.7049 - val_acc: 0.8670
Epoch 101/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0513 - acc: 0.9840 - val_loss: 0.7000 - val_acc: 0.8630
Epoch 102/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0451 - acc: 0.9849 - val_loss: 0.7605 - val_acc: 0.8640
Epoch 103/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0506 - acc: 0.9832 - val_loss: 0.7099 - val_acc: 0.8590
Epoch 104/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0508 - acc: 0.9833 - val_loss: 0.6772 - val_acc: 0.8600
Epoch 105/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0479 - acc: 0.9843 - val_loss: 0.7160 - val_acc: 0.8600
Epoch 106/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0440 - acc: 0.9860 - val_loss: 0.7694 - val_acc: 0.8640
Epoch 107/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0462 - acc: 0.9847 - val_loss: 0.6638 - val_acc: 0.8610
Epoch 108/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0488 - acc: 0.9849 - val_loss: 0.7477 - val_acc: 0.8580
Epoch 109/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0492 - acc: 0.9841 - val_loss: 0.7402 - val_acc: 0.8590
Epoch 110/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.0442 - acc: 0.9840 - val_loss: 0.7604 - val_acc: 0.8590
Epoch 111/120
10000/10000 [==============================] - 6s 604us/step - loss: 0.0471 - acc: 0.9847 - val_loss: 0.7366 - val_acc: 0.8560
Epoch 112/120
10000/10000 [==============================] - 6s 595us/step - loss: 0.0411 - acc: 0.9864 - val_loss: 0.6917 - val_acc: 0.8620
Epoch 113/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0462 - acc: 0.9844 - val_loss: 0.7454 - val_acc: 0.8590
Epoch 114/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0418 - acc: 0.9868 - val_loss: 0.7100 - val_acc: 0.8670
Epoch 115/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0443 - acc: 0.9848 - val_loss: 0.7134 - val_acc: 0.8640
Epoch 116/120
10000/10000 [==============================] - 6s 593us/step - loss: 0.0406 - acc: 0.9869 - val_loss: 0.7184 - val_acc: 0.8710
Epoch 117/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0390 - acc: 0.9875 - val_loss: 0.7242 - val_acc: 0.8700
Epoch 118/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0423 - acc: 0.9864 - val_loss: 0.7936 - val_acc: 0.8630
Epoch 119/120
10000/10000 [==============================] - 6s 594us/step - loss: 0.0444 - acc: 0.9848 - val_loss: 0.7430 - val_acc: 0.8640
Epoch 120/120
10000/10000 [==============================] - 6s 592us/step - loss: 0.0397 - acc: 0.9875 - val_loss: 0.7749 - val_acc: 0.8680
Out[86]:
<keras.callbacks.History at 0x7fee3c513b00>
In [87]:
''' Getting the feel for the test dataset
and how it is devided.
'''
Out[87]:
' Getting the feel for the test dataset\nand how it is devided.\n'
In [88]:
for i in range(0,10):
        current_inp = test_stories[i]
        current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
        current_prediction = model.predict([current_story, current_query])
        current_prediction = idx_word[np.argmax(current_prediction)]
        print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
        print("-----------------------------------------------------------------------------------------")
        
Fred picked up the football there . Fred gave the football to Jeff . What did Fred give to Jeff ? | Prediction: football | Ground Truth: football
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Who gave the football to Jeff ? | Prediction: Bill | Ground Truth: Fred
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Jeff gave the football to Fred . Fred handed the football to Jeff . What did Fred give to Jeff ? | Prediction: football | Ground Truth: football
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Jeff gave the football to Fred . Fred handed the football to Jeff . Jeff handed the football to Fred . Fred gave the football to Jeff . Who did Fred give the football to ? | Prediction: Jeff | Ground Truth: Jeff
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Jeff gave the football to Fred . Fred handed the football to Jeff . Jeff handed the football to Fred . Fred gave the football to Jeff . Jeff gave the football to Fred . Jeff put down the milk . Who did Jeff give the football to ? | Prediction: Fred | Ground Truth: Fred
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Who gave the apple ? | Prediction: Jeff | Ground Truth: Jeff
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Who received the apple ? | Prediction: Bill | Ground Truth: Bill
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Bill handed the apple to Fred . Mary got the football there . What did Bill give to Fred ? | Prediction: apple | Ground Truth: apple
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Bill handed the apple to Fred . Mary got the football there . Fred handed the apple to Bill . Bill gave the apple to Fred . What did Bill give to Fred ? | Prediction: apple | Ground Truth: apple
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Bill handed the apple to Fred . Mary got the football there . Fred handed the apple to Bill . Bill gave the apple to Fred . Mary travelled to the bedroom . Mary took the milk there . Who received the apple ? | Prediction: Fred | Ground Truth: Fred
-----------------------------------------------------------------------------------------
In [89]:
print(story)
['Fred', 'journeyed', 'to', 'the', 'bedroom', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'went', 'to', 'the', 'office', '.', 'Fred', 'picked', 'up', 'the', 'football', 'there', '.', 'Bill', 'journeyed', 'to', 'the', 'kitchen', '.', 'Bill', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'went', 'to', 'the', 'bathroom', '.', 'Fred', 'discarded', 'the', 'football', 'there', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Fred', 'grabbed', 'the', 'football', 'there', '.', 'Bill', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'kitchen', '.', 'Mary', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Mary', 'picked', 'up', 'the', 'milk', 'there', '.', 'Mary', 'travelled', 'to', 'the', 'garden', '.', 'Fred', 'went', 'to', 'the', 'garden', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Bill', 'went', 'to', 'the', 'hallway', '.', 'Mary', 'grabbed', 'the', 'milk', 'there', '.', 'Mary', 'discarded', 'the', 'milk', '.', 'Fred', 'went', 'back', 'to', 'the', 'bedroom', '.', 'Fred', 'picked', 'up', 'the', 'apple', 'there', '.', 'Fred', 'moved', 'to', 'the', 'garden', '.', 'Fred', 'discarded', 'the', 'apple', '.', 'Mary', 'went', 'back', 'to', 'the', 'office', '.', 'Fred', 'moved', 'to', 'the', 'kitchen', '.', 'Mary', 'got', 'the', 'football', 'there', '.', 'Bill', 'went', 'back', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Mary', 'handed', 'the', 'football', 'to', 'Bill', '.', 'Fred', 'journeyed', 'to', 'the', 'office', '.', 'Fred', 'went', 'back', 'to', 'the', 'hallway', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'dropped', 'the', 'football', 'there', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'took', 'the', 'football', 'there', '.', 'Mary', 'went', 'to', 'the', 'bedroom', '.', 'Mary', 'put', 'down', 'the', 'football', 'there', '.', 'Bill', 'moved', 'to', 'the', 'bedroom', '.', 'Fred', 'travelled', 'to', 'the', 'kitchen', '.', 'Fred', 'moved', 'to', 'the', 'office', '.', 'Mary', 'journeyed', 'to', 'the', 'hallway', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Fred', 'went', 'to', 'the', 'kitchen', '.', 'Bill', 'dropped', 'the', 'football', '.', 'Jeff', 'went', 'back', 'to', 'the', 'garden', '.', 'Bill', 'took', 'the', 'football', 'there', '.', 'Jeff', 'grabbed', 'the', 'milk', 'there', '.', 'Bill', 'discarded', 'the', 'football', '.', 'Bill', 'went', 'to', 'the', 'kitchen', '.', 'Mary', 'moved', 'to', 'the', 'bedroom', '.', 'Mary', 'went', 'back', 'to', 'the', 'hallway', '.', 'Jeff', 'dropped', 'the', 'milk', '.', 'Jeff', 'moved', 'to', 'the', 'office', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'travelled', 'to', 'the', 'bathroom', '.', 'Mary', 'went', 'to', 'the', 'garden', '.', 'Bill', 'went', 'back', 'to', 'the', 'bathroom', '.', 'Jeff', 'moved', 'to', 'the', 'garden', '.', 'Jeff', 'picked', 'up', 'the', 'apple', 'there', '.', 'Jeff', 'handed', 'the', 'apple', 'to', 'Mary', '.', 'Mary', 'passed', 'the', 'apple', 'to', 'Jeff', '.']
In [90]:
from keras.models import model_from_json
model_json = model.to_json()
with open("model_three-arg-relations.json", "w") as json_file:
    json_file.write(model_json)
# serialize weights to HDF5
model.save_weights("model_three-arg-relations.h5")
print("Saved model to disk")
Saved model to disk
In [91]:
json_file = open('model_three-arg-relations.json', 'r')
loaded_model_json = json_file.read()
json_file.close()
loaded_model = model_from_json(loaded_model_json)
# load weights into new model
loaded_model.load_weights("model_three-arg-relations.h5")
/home/ubuntu/src/keras/keras/engine/topology.py:1269: UserWarning: The `Merge` layer is deprecated and will be removed after 08/2017. Use instead layers from `keras.layers.merge`, e.g. `add`, `concatenate`, etc.
  return cls(**config)
In [92]:
test_stories[0]
Out[92]:
(['Fred',
  'picked',
  'up',
  'the',
  'football',
  'there',
  '.',
  'Fred',
  'gave',
  'the',
  'football',
  'to',
  'Jeff',
  '.'],
 ['What', 'did', 'Fred', 'give', 'to', 'Jeff', '?'],
 'football')
In [93]:
loaded_model.compile(optimizer='rmsprop', loss='categorical_crossentropy',
              metrics=['accuracy'])
for i in range(0,10):
        current_inp = test_stories[i]
        current_story, current_query, current_answer = vectorize_stories([current_inp], word_idx, story_maxlen, query_maxlen)
        current_prediction = loaded_model.predict([current_story, current_query])
        current_prediction = idx_word[np.argmax(current_prediction)]
        print(' '.join(current_inp[0]), ' '.join(current_inp[1]), '| Prediction:', current_prediction, '| Ground Truth:', current_inp[2])
        print("-----------------------------------------------------------------------------------------")
Fred picked up the football there . Fred gave the football to Jeff . What did Fred give to Jeff ? | Prediction: football | Ground Truth: football
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Who gave the football to Jeff ? | Prediction: Bill | Ground Truth: Fred
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Jeff gave the football to Fred . Fred handed the football to Jeff . What did Fred give to Jeff ? | Prediction: football | Ground Truth: football
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Jeff gave the football to Fred . Fred handed the football to Jeff . Jeff handed the football to Fred . Fred gave the football to Jeff . Who did Fred give the football to ? | Prediction: Jeff | Ground Truth: Jeff
-----------------------------------------------------------------------------------------
Fred picked up the football there . Fred gave the football to Jeff . Bill went back to the bathroom . Jeff grabbed the milk there . Jeff gave the football to Fred . Fred handed the football to Jeff . Jeff handed the football to Fred . Fred gave the football to Jeff . Jeff gave the football to Fred . Jeff put down the milk . Who did Jeff give the football to ? | Prediction: Fred | Ground Truth: Fred
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Who gave the apple ? | Prediction: Jeff | Ground Truth: Jeff
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Who received the apple ? | Prediction: Bill | Ground Truth: Bill
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Bill handed the apple to Fred . Mary got the football there . What did Bill give to Fred ? | Prediction: apple | Ground Truth: apple
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Bill handed the apple to Fred . Mary got the football there . Fred handed the apple to Bill . Bill gave the apple to Fred . What did Bill give to Fred ? | Prediction: apple | Ground Truth: apple
-----------------------------------------------------------------------------------------
Mary moved to the hallway . Jeff moved to the garden . Jeff got the apple there . Mary journeyed to the kitchen . Fred travelled to the garden . Jeff gave the apple to Fred . Fred travelled to the hallway . Fred handed the apple to Bill . Bill handed the apple to Fred . Mary got the football there . Fred handed the apple to Bill . Bill gave the apple to Fred . Mary travelled to the bedroom . Mary took the milk there . Who received the apple ? | Prediction: Fred | Ground Truth: Fred
-----------------------------------------------------------------------------------------
In [94]:
print(current_story)
[[ 0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0
   0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  0  6 29 37
  35 23  1  5 29 37 35 18  1  5 21 35  9 36  1  6 25 37 35 26  1  4 39 37
  35 18  1  5 19 35  9 37  4  1  4 39 37 35 23  1  4 24 35  9 37  3  1  3
  24 35  9 37  4  1  6 21 35 17 36  1  4 24 35  9 37  3  1  3 19 35  9 37
   4  1  6 39 37 35 12  1  6 38 35 28 36  1]]
In [95]:
print(current_query)
[[ 0  0  0  8 34 35  9  2]]
In [64]:
print(len(current_query))
1
In [65]:
print(test_stories[0])
(['The', 'hallway', 'is', 'east', 'of', 'the', 'bathroom', '.', 'The', 'bedroom', 'is', 'west', 'of', 'the', 'bathroom', '.'], ['What', 'is', 'the', 'bathroom', 'east', 'of', '?'], 'bedroom')